home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 3006 / 3006.xpi / chrome / dwhelper.jar / content / conversion-rules.xul < prev    next >
Extensible Markup Language  |  2010-01-15  |  1KB  |  32 lines

  1. <?xml version="1.0"?> 
  2. <!-- *****************************************************************************
  3.  *            Copyright (c) 2006-2009 Michel Gutierrez. All Rights Reserved.
  4.  ****************************************************************************** -->
  5. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
  6. <?xml-stylesheet href="chrome://dwhelper/skin/dwhelper.css" type="text/css"?>
  7. <?xml-stylesheet href="chrome://dwhelper/content/bindings.css" type="text/css"?>
  8.  
  9. <!DOCTYPE window SYSTEM "chrome://dwhelper/locale/dwhelper.dtd" >
  10.  
  11. <dialog id="dwhelper-conversion-rules"
  12.         title="&title.conversion-rules;"
  13.         ondialogaccept="return doOk();"
  14.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  15.         xmlns:html="http://www.w3.org/1999/xhtml"
  16.         >
  17.  
  18.     <script>
  19. <![CDATA[
  20.  
  21. function doOk() {
  22.     document.getElementById("convrulelistpanel").save();
  23. }
  24.  
  25. ]]>
  26.     </script>
  27.  
  28.     <description class="feature-descr">&conversion.rules-description;</description>
  29.     <ConvRuleListPanel id="convrulelistpanel" flex="1" style="width: 500px;"/>
  30.  
  31. </dialog>
  32.